From 63856438ac915d23750bfd71bd8771db4896501a Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 18 May 2004 13:51:48 +0000 Subject: [PATCH] (DECL_ALIGN): Remove restriction on MS-DOS systems. --- src/lisp.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/lisp.h b/src/lisp.h index fc22bc92c67..101ed73d3ef 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -305,12 +305,10 @@ enum pvec_type variable VAR of type TYPE with the added requirement that it be TYPEBITS-aligned. */ #ifndef DECL_ALIGN -# ifndef MSDOS /* MS-DOS doesn't currently support USE_LSB_TAG */ /* What compiler directive should we use for non-gcc compilers? -stef */ -# if defined (__GNUC__) -# define DECL_ALIGN(type, var) \ - type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var -# endif +# if defined (__GNUC__) +# define DECL_ALIGN(type, var) \ + type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var # endif #endif -- 2.30.2